home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet internetowy / Rozne / HTTrack 3.40-2 / httrack-3.40-2.exe / {app} / src / mmsrip / common.h < prev    next >
C/C++ Source or Header  |  2006-01-24  |  1KB  |  51 lines

  1. /*
  2.  * $RCSfile: common.h,v $
  3.  * $Date: 2006/01/17 19:59:27 $ - $Revision: 1.11 $
  4.  *
  5.  * This file is distributed as a part of MMSRIP ( MMS Ripper ).
  6.  * Copyright (c) 2005-2006 Nicolas BENOIT
  7.  *
  8.  * This program is free software; you can redistribute it and/or modify it
  9.  * under the terms of the GNU General Public License as published by the
  10.  * Free Software Foundation; either version 2, or (at your option) any
  11.  * later version.
  12.  *
  13.  * This program is distributed in the hope that it will be useful,
  14.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16.  * GNU General Public License for more details.
  17.  *
  18.  * You should have received a copy of the GNU General Public License
  19.  * along with this program; if not, write to the Free Software
  20.  * Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  21.  *
  22.  */
  23.  
  24.  
  25. #ifndef __COMMON_H__
  26. #define __COMMON_H__
  27.  
  28. #ifdef HAVE_CONFIG_H
  29. #include "config.h"
  30. #else
  31. #define PROGRAM_SHORT_NAME "mmsrip"
  32. #define PROGRAM_FULL_NAME  "MMS Ripper"
  33. #define PROGRAM_VERSION    "0.7.0-rc1"
  34. #endif
  35.  
  36. #define PROGRAM_AUTHORS "Nicolas BENOIT <nbenoit@tuxfamily.org>"
  37. #define PROGRAM_HELPERS "SDP Multimedia and Major MMS"
  38.  
  39.  
  40. /*
  41.  * quick struct in order to make list of streams
  42.  */
  43. typedef struct
  44. {
  45.   void *next;
  46.   char *stream;
  47.   char *output;
  48. } STREAM_LIST;
  49.  
  50. #endif
  51.